home *** CD-ROM | disk | FTP | other *** search
- #pragma once
- /*****
- *
- * AboutBox.h
- *
- * This is a support file for "Grant's CGI Framework".
- * Please see the license agreement that accompanies the distribution package
- * for licensing details.
- *
- * Copyright ©1995,1996 by Grant Neufeld
- * grant@acm.com
- * http://arpp.carleton.ca/grant/
- *
- *****/
-
- #include "MyConfiguration.h"
- #if kCompileWithForeground
-
-
- /*** CONSTANT DECLARATIONS ***/
-
- #define kAboutBoxDLOG 400
-
-
- /*** FUNCTION PROTOTYPES ***/
-
- void AboutBoxInit ( void );
- void AboutBoxOpen ( void );
- void AboutBoxUpdate ( void );
- void AboutBoxClose ( void );
- Boolean AboutHandleEvent ( EventRecord *, DialogPtr, short );
-
- #else /* if not kCompileWithForeground */
-
- #define AboutBoxInit()
-
- #endif /* kCompileWithForeground */
-
- /***** EOF *****/
-